From d715f015915997add422d945c0ab1cad5917f50d Mon Sep 17 00:00:00 2001 From: "awilliam@xenbuild.aw" Date: Fri, 14 Jul 2006 11:06:38 -0600 Subject: [PATCH] [IA64] xencons command line parameter is now an integer 'xencons' command line is now an integer, so that it can be disabled. Signed-off-by: Tristan Gingold --- xen/arch/ia64/xen/xensetup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/ia64/xen/xensetup.c b/xen/arch/ia64/xen/xensetup.c index be9484d0b3..2fcab3ea14 100644 --- a/xen/arch/ia64/xen/xensetup.c +++ b/xen/arch/ia64/xen/xensetup.c @@ -66,7 +66,7 @@ integer_param("maxcpus", max_cpus); Note: you have to disable 8250 serials in domains (to avoid use of the same resource). */ static int opt_xencons = 1; -boolean_param("xencons", opt_xencons); +integer_param("xencons", opt_xencons); /* Toggle to allow non-legacy xencons UARTs to run in polling mode */ static int opt_xencons_poll = 0; -- 2.30.2